home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / ms-0_06.lha / xms-0.06 / Mama.h < prev    next >
C/C++ Source or Header  |  1991-10-17  |  681b  |  29 lines

  1. /* Mama.h - public header for MandelSpawn master widget */
  2. /* Copyright (C) 1990, 1991 Andreas Gustafsson */
  3.  
  4. #ifndef _Mama_h
  5. #define _Mama_h
  6.  
  7. #define XtNSpectrum     "spectrum"
  8. #define XtNColours    "colours"
  9. #define XtNHues        "hues"
  10. #define XtNBw        "bw"
  11. #define XtNWrap        "wrap"
  12. #define XtNDebug    "debug"
  13.  
  14. typedef struct _MamaRec *MamaWidget;
  15. typedef struct _MamaClassRec *MamaWidgetClass;
  16.  
  17. extern WidgetClass mamaWidgetClass;
  18.  
  19. /* Methods */
  20. void Shutdown(); /* shut down the whole operation */
  21. unsigned MaxIterations();
  22. void PopupAnother();
  23. void SlaveStatistics();
  24. unsigned MamaWidth();
  25. unsigned MamaHeight();
  26. unsigned long *MamaPixels();
  27. struct wf_state *MamaWorkforce();
  28. #endif _Mama_h
  29.